home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
online
/
motor.EXE
/
DOSYA.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-10-04
|
133 b
|
11 lines
uses crt;
var
f1,f2 :text;
s:string;
begin
readln(s);
assign(f1,'dosya.dat');
rewrite(f1);
writeln(f1,s);
close(f1);
end.